All Questions
Tagged with asp.net-web-apicontroller
3 questions
1vote
1answer
70views
Handling HTTP requests in existing Web Api
I am working in a Web Api project that has the following project structure: Root Controllers Orchestrators Managers Services etc The ...
6votes
3answers
21kviews
ASP.NET REST controller with try-catch error handling
Yesterday someone guided me through this article and I'm wondering whether I should use try-catch implementation or not? I have the following code below which is actually a RESTful service and I have ...
4votes
1answer
3kviews
Connect to MySQL and fetch a list of customers asynchronously using C#
I am connecting with a database and returning values from a Web API controller. For better performance, I am doing it completely asynchronously with a new task. Am I doing it the correct way? Am I ...